projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13de6bf
)
(eshell-glob-chars-list) (eshell-glob-translate-alist): Add support
author
John Wiegley
<johnw@newartisans.com>
Thu, 10 Aug 2006 15:30:56 +0000
(15:30 +0000)
committer
John Wiegley
<johnw@newartisans.com>
Thu, 10 Aug 2006 15:30:56 +0000
(15:30 +0000)
for [^g] in character globs.
lisp/eshell/em-glob.el
patch
|
blob
|
history
diff --git
a/lisp/eshell/em-glob.el
b/lisp/eshell/em-glob.el
index 76bde7784dce8b3ba5c7f4a2ecf4a7de55b1e449..c700d5d7f6e38b6526e84f619340d84f39eb2379 100644
(file)
--- a/
lisp/eshell/em-glob.el
+++ b/
lisp/eshell/em-glob.el
@@
-97,7
+97,7
@@
This option slows down recursive glob processing by quite a bit."
:type 'boolean
:group 'eshell-glob)
-(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?#)
+(defcustom eshell-glob-chars-list '(?\] ?\[ ?* ?? ?~ ?\( ?\) ?| ?#
?^
)
"*List of additional characters used in extended globbing."
:type '(repeat character)
:group 'eshell-glob)
@@
-105,6
+105,7
@@
This option slows down recursive glob processing by quite a bit."
(defcustom eshell-glob-translate-alist
'((?\] . "]")
(?\[ . "[")
+ (?^ . "^")
(?? . ".")
(?* . ".*")
(?~ . "~")